<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
      <title>Tagged with #brain signal - Processing 2.x and 3.x Forum</title>
      <link>https://forum.processing.org/two/discussions/tagged/feed.rss?Tag=%23brain+signal</link>
      <pubDate>Sun, 08 Aug 2021 18:52:27 +0000</pubDate>
         <description>Tagged with #brain signal - Processing 2.x and 3.x Forum</description>
   <language>en-CA</language>
   <atom:link href="/two/discussions/tagged%23brain+signal/feed.rss" rel="self" type="application/rss+xml" />
   <item>
      <title>Serial parsing from eeg string</title>
      <link>https://forum.processing.org/two/discussion/23983/serial-parsing-from-eeg-string</link>
      <pubDate>Thu, 31 Aug 2017 16:01:57 +0000</pubDate>
      <dc:creator>iiyeo</dc:creator>
      <guid isPermaLink="false">23983@/two/discussions</guid>
      <description><![CDATA[<p>Hi everyone, I am doing a brainwave eeg project now and I have already got the raw brainwave values in Arduino. It is a string of 11 values. But when I want to parse the eeg string in processing, I got the error 'disabling serialEvent() for /dev/cu.usbmodem1411 null'. I am quite new to processing and I totally have no idea about that. Is there anyone could help me to see this code? Thanks in advance. Sorry for my English if there is any mistake.</p>

<p>PS: I even didn't get the 11 varying values in the below monitor. I can only get data like this:
    0 0 0 0 0 0 0 0 0 0 0
    0 0 0 0 0 0 0 0 0 0 0
    0 0 0 0 0 0 0 0 0 0 0
    0 0 0 0 0 0 0 0 0 0 0
    0 0 0 0 0 0 0 0 0 0 0
    0 0 0 0 0 0 0 0 0 0 0</p>

<p>Here is the code:</p>

<pre><code>import processing.serial.*;
Serial serial;

int signal_strength;
int attention; 
int meditation; 
int delta;
int theta;
int low_alpha;
int high_alpha; 
int low_beta;
int high_beta;
int low_gamma; 
int high_gamma;  


void setup() {


  println("Find your Arduino in the list below, note its [index]:\n");

  for (int i = 0; i &lt; Serial.list().length; i++) {
    println("[" + i + "] " + Serial.list()[i]);
  }

  serial = new Serial(this, Serial.list()[3], 9600);
  serial.bufferUntil(10);

}

void draw() {

  println(signal_strength, attention, meditation, delta, theta, low_alpha, high_alpha, low_beta, high_beta, low_gamma, high_gamma);

}

void serialEvent(Serial serial) {

  String incomingString = serial.readString().trim();

  int[] incomingValues = int(split(incomingString, ","));
    signal_strength = incomingValues[0];
    attention = incomingValues[1];
    meditation = incomingValues[2];
    delta = incomingValues[3];
    theta = incomingValues[4];
    low_alpha = incomingValues[5];
    high_alpha = incomingValues[6];
    low_beta = incomingValues[7];
    high_beta = incomingValues[8];
    low_gamma = incomingValues[9];
    high_gamma = incomingValues[10];

  }
</code></pre>
]]></description>
   </item>
   <item>
      <title>Inside searching the processing project concept: Brain and BCI ideas.</title>
      <link>https://forum.processing.org/two/discussion/20987/inside-searching-the-processing-project-concept-brain-and-bci-ideas</link>
      <pubDate>Fri, 24 Feb 2017 13:20:48 +0000</pubDate>
      <dc:creator>j0k</dc:creator>
      <guid isPermaLink="false">20987@/two/discussions</guid>
      <description><![CDATA[<p>Good day, Community!</p>

<p>I am thinking about project idea to submit and right way to do that. I look on:
- <a href="https://github.com/processing/processing/wiki/Project-List" target="_blank" rel="nofollow">https://github.com/processing/processing/wiki/Project-List</a>
- <a href="https://github.com/processing/p5.js-web-editor" target="_blank" rel="nofollow">https://github.com/processing/p5.js-web-editor</a>
- 2015 year projects on <a href="https://www.google-melange.com/archive/gsoc/2015/orgs/processing" target="_blank" rel="nofollow">https://www.google-melange.com/archive/gsoc/2015/orgs/processing</a>
- <a href="http://shiffman.net/2013/09/24/gsoc/" target="_blank" rel="nofollow">http://shiffman.net/2013/09/24/gsoc/</a></p>

<p>Prologue. Three months ago my team and me started a very exciting project TuSion - it's on Art, Perception Art and Op Art themes. At the beginning we decide to use Processing as a awesome instrument to prototype Generative Art apps both as Perception Art. The main idea is to create interactive art neurofeedback protocol between 2+ people based on EEG data measured from brain via neurointerface. Working scenario: a) you put on an neuroheadset, b) then take a smartphone for example, c) run TuSion app, d) choose single or multiplayer mode, e) open an art object (we call it 'tuse') and f) start play with it. By the way that tuse itself will play with clients' perception. Project page is here: <a href="http://fb.com/tusionapp" target="_blank" rel="nofollow">http://fb.com/tusionapp</a>. Here I see a perception plasticity improving side. Today I am a PhD student with theme in neurofeedback protocols (Physiology) at IHB RAS with CS background and engineering of Brain-Computer Biofeedback protocols - it's one of the dominant interest.</p>

<p>I am new in open source big projects development process so what is the right way?</p>

<p>Today I see 3 project ideas:</p>

<ol>
<li><p>Signal visualizing tool. A tool/plugin for PDE which is working fine with time series signals and visualize it. It word be good for developing brain-art and science-art projects.</p></li>
<li><p>'VR + brain' samples. VR is space where every parameter of around space can be changed and still there is no samples on that them inside sample packs.</p></li>
<li><p>Connector with OpenViBE soft which is a very popular opensource engine for testing and developing brain-computer interface experiments, demonstration and apps.</p></li>
</ol>

<p>Now it's useful to make issue fixing like that <a href="https://github.com/processing/processing/issues/4736" target="_blank" rel="nofollow">https://github.com/processing/processing/issues/4736</a>?</p>

<p>Any comments?
best,</p>
]]></description>
   </item>
   </channel>
</rss>